id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Variablesaddition1

prev  |  next  |  chance

Determine the value returned by the function.

def add_5(num):
    total = num + 5
    return total
Function Call  Return Value
add_5(2)    
add_5(0)    
add_5(-50)
add_5(-3)  

Experiment with this code on Gitpod.io

⬅ Back